home *** CD-ROM | disk | FTP | other *** search
/ By Popular Request 2.0 / By Popular Request 2.0 (Arsenal Computer).ISO / amiga_1 / ast44pl1.ads < prev    next >
Text File  |  1995-06-22  |  4KB  |  118 lines

  1.            ADS Zone: 1
  2.      ADS Hatch Site: Paul Miller
  3.        ADS Position: ADS Zone 1 STAR
  4.            BBS Name: Lonely Mountain BBS
  5.     Phone Number(s): 804-827-0726
  6.     Network Address: 1:271/292  
  7.      Network Region: 13    
  8.           BBS Hours: 24 Hrs/Day
  9. BBS Mailer/Software: Mebbs-Net Pro BBS
  10.   BBS Storage Space: 2250 Megs + 8 CD Roms
  11.   File Requestable :  <X> Y     < > N
  12. File Request Hours : All The Time
  13.  
  14. - - - - - - - - - - - - - - - - - - - - - - - - - -
  15.  
  16. Short:    Amiga port of Astrolog (Version 4.40)
  17. Author:   astara@u.washington.edu (Walter D. "Cruiser1" Pullen)
  18. Uploader: tf@antares.ping.de (Tobias Ferber)
  19. Type:     misc/sci
  20. Replaces: misc/sci/Astrolog-4.40.lha
  21.  
  22. ******************************************************************************
  23. * IMPORTATNT NOTE:  THIS ARCHIVE CONTAINS A FIXED VERSION OF ASTROLOG WITH
  24. * THE ASTFIX PATCHES APPLIED!  YOU DON'T NEED ASTFIX.LHA!
  25. ******************************************************************************
  26.  
  27. Astrolog version 4.40 is a powerful, customizable, and platform independent
  28. astrology chart calculation program, used in 20+ countries on six continents.
  29. It is 100% freeware and requires no registration fee.  :) The complete source
  30. code is available.  Astrolog features:  wheels, aspects, midpoints,
  31. relationship charts, transits, progressions, some interpretations,
  32. astro-graphy, local horizon, constellations, planet orbits, dispositors,
  33. various influence charts, biorhythms, different zodiacs, central planets, 13
  34. house systems, 8400 year ephemeris, asteroids, Uranians, fixed stars, Arabic
  35. parts, script files and macros, PC screen graphics, X11 Windows graphics,
  36. smooth animation of charts, graphic files in PostScript, Windows metafile, and
  37. bitmap formats, and more!
  38.  
  39. ******************************************************************************
  40. * INSTALLATION
  41. ******************************************************************************
  42.  
  43. Read the "Distfile" for details about the files in this archive.  Copy the 
  44. executable (astrolog.000 or astrolog.030 respectively) somewhere into your 
  45. path and rename it to "astrolog".  Copy the config file "astrolog.dat" into
  46. the same directory as where you put the executable.  Now try out
  47.  
  48.   astrolog -i now -X
  49.  
  50. (... and press `q' to quit)
  51.  
  52. You might also want to play around with the default graphics resolution in
  53. the file "astrolog.dat" (line 146).  I use
  54.  
  55. :Xw 554 554
  56.  
  57. Read the file HELPFILE.440!
  58.  
  59. ******************************************************************************
  60. * CHANGES SINCE ASTROLOG-4.40.LHA
  61. ******************************************************************************
  62.  
  63. o  Fixed the wrong graphics.library LVO of DrawEllipse()
  64.    (Bug reported by Michal Kara,lemming@k332.feld.cvut.cz)
  65.  
  66. ******************************************************************************
  67. * CHANGES IN THE SOURCE CODE OF AST44SRC.ZIP
  68. ******************************************************************************
  69.  
  70. astrolog.h line 1167 & extern.h line 127:
  71.  
  72. #ifdef PI
  73. #undef PI
  74. #endif /*PI*/
  75.  
  76. astrolog.c: return type of main() changed from `void' to `int'
  77.  
  78. data.c:115: initializer element is not constant
  79.  
  80.     FILE *S = stdout;  /* initialization moved to main() */
  81.  
  82.  
  83. general.c:652:  sign = (int)floor(deg / 30.0);
  84.                             ^^^^^
  85.     otherwise the degree value 'd' might become negative
  86.  
  87.  
  88. general.c:663:  d = (int)floor(deg / 15.0);
  89.                          ^^^^^
  90.     otherwise the minutes value 'm' might become negative
  91.  
  92. ----
  93.  
  94. astrolog.h
  95.     Added some fields to struct gi and some #includes for the AMIGA.
  96.     Changed the default input search path to "PROGDIR:"
  97.  
  98. xgeneral.c
  99. xscreen.c
  100.     Implementation of Amiga graphic support.  See #ifdef AMIGA for
  101.     the relevant parts.  Some changes had to be made because of the
  102.     #else clauses which expected everything which was not X11 to be
  103.     PCG.
  104.  
  105. ellipse.s
  106.     Here we call LVO_DrawEllipse() via GfxBase.  We need this because
  107.     Astrolog's ellipse routine is called DrawEllipse() as well.
  108.         This file is needed on Amiga *only*.
  109.  
  110. io.c
  111.     ':' has been introduced as a legal path seperator like '/'.
  112.     Astrolog first attempts to read `astrolog.dat' from the current
  113.     directory (as usual) but then (if that fails) it looks in it's
  114.     own directory `PROGDIR:astrolog.dat'.
  115.  
  116. amiga.c
  117.     Routines to initialize and close Amiga graphics.
  118.